home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue56
/
DragDrop
/
VCLDrop.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-02-09
|
222 b
|
16 lines
program VCLDrop;
uses
Forms,
VCLDropU in 'VCLDropU.PAS' {Form1};
{$R *.RES}
begin
{$ifndef Windows}
Application.Initialize;
{$endif}
Application.CreateForm(TForm1, Form1);
Application.Run;
end.